home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / jockdem4.arc / DIRDEM1.PAS < prev    next >
Pascal/Delphi Source File  |  1991-04-28  |  306b  |  16 lines

  1. Program DirTTT5_demo_1;
  2.  
  3. {IMPORTANT NOTE: set Options Compiler Conditional defines to
  4.                       DIRFULL
  5.  and select compile build
  6. }
  7. uses CRT,DIRTTT5;
  8.  
  9. var
  10.   Chosen_File : string;
  11.   ErrCode : integer;
  12.  
  13. begin
  14.     clrscr;
  15.     Chosen_File := Display_Directory('*.Pas',Errcode);
  16. end.